home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / funnel.zoo / sources / machin.h < prev    next >
C/C++ Source or Header  |  1993-04-11  |  15KB  |  301 lines

  1. /*##############################################################################
  2.  
  3. FUNNNELWEB COPYRIGHT
  4. ====================
  5. FunnelWeb is a literate-programming macro preprocessor.
  6.  
  7. Copyright (C) 1992 Ross N. Williams.
  8.  
  9.    Ross N. Williams
  10.    ross@spam.adelaide.edu.au
  11.    16 Lerwick Avenue, Hazelwood Park 5066, Australia.
  12.  
  13. This program is free software; you can redistribute it and/or modify
  14. it under the terms of Version 2 of the GNU General Public License as
  15. published by the Free Software Foundation.
  16.  
  17. This program is distributed WITHOUT ANY WARRANTY; without even the implied
  18. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  19. See Version 2 of the GNU General Public License for more details.
  20.  
  21. You should have received a copy of Version 2 of the GNU General Public
  22. License along with this program. If not, you can FTP the license from
  23. prep.ai.mit.edu/pub/gnu/COPYING-2 or write to the Free Software
  24. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  
  26. Section 2a of the license requires that all changes to this file be
  27. recorded prominently in this file. Please record all changes here.
  28.  
  29. Programmers:
  30.    RNW  Ross N. Williams  ross@spam.adelaide.edu.au
  31.  
  32. Changes:
  33.    07-May-1992  RNW  Program prepared for release under GNU GPL V2.
  34.  
  35. ##############################################################################*/
  36.  
  37.  
  38. /******************************************************************************/
  39. /*                                    MACHIN.H                                */
  40. /******************************************************************************/
  41. /*                                                                            */
  42. /* WARNING: DO NOT ADD ANY PROGRAM DEPENDENT DEFINITIONS.                     */
  43. /*                                                                            */
  44. /* This module (machin.h and machin.c) contains definitions and objects       */
  45. /* whose values depends directly on the compilation and execution             */
  46. /* environment, but are otherwise independent from any particular computer    */
  47. /* program.                                                                   */
  48. /*                                                                            */
  49. /* The only difference between the purpose of this module and the "environ"   */
  50. /* module is that the "environ" module contains the "essentials" whereas this */
  51. /* module contains extra machine specific definitions and objects that will   */
  52. /* not be required by most user modules.                                      */
  53. /*                                                                            */
  54. /******************************************************************************/
  55.  
  56. /* Ensure that the body of this header file is included at most once.         */
  57. #ifndef DONE_FWMACHIN
  58. #define DONE_FWMACHIN
  59.  
  60. /******************************************************************************/
  61.  
  62. #include <time.h>
  63. #include "style.h"
  64.  
  65. /******************************************************************************/
  66.  
  67. /* Machine Alignment Constraints                                              */
  68. /* -----------------------------                                              */
  69. /* Some machines require that objects of particular lengths be aligned in     */
  70. /* memory. For example, the 68000 will trap any attempt to access a word      */
  71. /* (16 bits or an int in THINK C) at an odd address. It is important that C   */
  72. /* programs that deal with memory at a low level be aware of such             */
  73. /* constraints. As the constraints are always at a power of two, we defined   */
  74. /* ALIGN_POWER to be the minimum power of two at which it is both safe and    */
  75. /* efficient to operate.                                                      */
  76.  
  77. /* The Macintosh requires words and longs to be aligned on word boundaries.   */
  78. /* The PC is not fussy about alignment, but operates more efficiently at word */
  79. /* boundaries.                                                                */
  80. #if MAC | PC
  81. #define ALIGN_POWER (1L)
  82. #endif
  83.  
  84. /* The Sun requires objects to be aligned on longword boundaries (=2^2).      */
  85. /* The VMS VAX doesn't care about alignment, but operates more efficiently on */
  86. /* longword boundaries.                                                       */
  87. #if SUN | VMS
  88. #define ALIGN_POWER (2L)
  89. #endif
  90.  
  91. /******************************************************************************/
  92.  
  93. /* Filenames                                                                  */
  94. /* ---------                                                                  */
  95. /* The length and structure of filenames varies from machine to machine. The  */
  96. /* differences addressed here are:                                            */
  97. /*    1) The character used to separate directory specs from filenames.       */
  98. /*    2) The maximum length of a filename.                                    */
  99.  
  100. /* FN_DELIM must contain the character that separates directory specs from    */
  101. /* filenames. Notice that in the VMS case, it is "]", not "."                 */
  102.  
  103. #if MAC
  104. #define FN_DELIM ':'
  105. #endif
  106.  
  107. #if SUN
  108. #define FN_DELIM '/'
  109. #endif
  110.  
  111. #if VAX
  112. #define FN_DELIM ']'
  113. #endif
  114.  
  115. #if PC
  116. #define FN_DELIM '\\'
  117. #endif
  118.  
  119. /* The rest of this section shouldn't have to be changed, unless you          */
  120. /* encounter a funny with your system's definition of FILENAME_MAX.           */
  121.  
  122. /* FILENAME_MAX tells the maximum number of characters allowed in a filename  */
  123. /* on the target machine. This symbol is supposed to be defined in stdio.h    */
  124. /* (ANSI S7.9.1) so we don't want to override that. However, if it isn't, we  */
  125. /* need to define a safe default length.                                      */
  126. #ifndef FILENAME_MAX
  127. #define FILENAME_MAX 300
  128. #endif
  129.  
  130. /* Some VAX compilers define FILENAME_MAX to be 39, which is the maximum      */
  131. /* length of the NAME part of a VMS filename. This is not appropriate, so we  */
  132. /* override it.                                                               */
  133. #if VMS
  134. #undef FILENAME_MAX
  135. #define FILENAME_MAX 255        /* Should really be NAM$C_MAXRSS              */
  136. #endif
  137.  
  138. /* Now we can use the constant to define a filename type.                     */
  139. /* Note: For a while I defined "typedef fn_t *p_fn_t". However, this is a     */
  140. /* pointer to an array rather than (char *) and it caused no end of problems. */
  141. typedef char fn_t[FILENAME_MAX+1];
  142. typedef char *p_fn_t;
  143.  
  144. /******************************************************************************/
  145.  
  146. /* Command Lines                                                              */
  147. /* -------------                                                              */
  148. /* The maximum length of command line varies from machine to machine and we   */
  149. /* define symbols to reflect this. The reason why we don't just set this to a */
  150. /* high value and forget about it is that FunnelWeb sometimes places          */
  151. /* command line variables on the stack, and some machines (e.g. MAC under     */
  152. /* THINK-C don't provide much stack space. So we have to minimize this        */
  153. /* variable on those machines.                                                */
  154.  
  155. /* We choose a small maximum command line on the Macintosh so as to avoid     */
  156. /* chewing up stack space when command lines have to be pushed.               */
  157. #if MAC
  158. #define COMLINE_MAX 300
  159. #endif
  160.  
  161. /* On the Sun, 1024 is a normal command line and 2048 is safe. */
  162. #if SUN
  163. #define COMLINE_MAX 2048
  164. #endif
  165.  
  166. /* On the VMS, 1024 is usually adequate. */
  167. #if VMS
  168. #define COMLINE_MAX 1024
  169. #endif
  170.  
  171. /* On a PC, we assume this is enough. */
  172. #if PC
  173. #define COMLINE_MAX 300
  174. #endif
  175.  
  176. /* Make sure that the value is not too low. */
  177. /* The value 300 is guaranteed by the command interpreter. */
  178. #if COMLINE_MAX < 300
  179.    #error COMLINE_MAX must be at least 300.
  180. #endif
  181.  
  182. /* Now define a type for command lines.                                       */
  183. /* Note: For a while I defined "typedef cl_t *p_cl_t". However, this is a     */
  184. /* pointer to an array